How can i synchronize directories in Explorer-Views whit xcopy.exe?

This goes wonderfully with the help of transfer parameters in XCOPY.EXE. That's a pretty brisk business.


The synchronization of directories with the help of transfer parameters to XCOPY.EXE.
Similar and also useful to when you use the file rename commands several times in the file explorers!
Here an example of synchronizing directories:
 Folder in Q-view 1 as a source and Q-view 2 as the destination folder.

The command is:
XCOPY/Folder v1>v2=%sysdir%/xcopy.exe="%curdir1%\*.*" "%curdir2%" /S /E /C /H /O /R /Y /D /V 

or only folder tree: 
XCOPY/FolderTree v1>v2=%sysdir%/xcopy.exe="%curdir1%\*.*" "%curdir2%" /T /E

Tip: You can also use this for ROBOCOPY or for other move copy scripts! 

Read this: > Associating files with programs!

source Specifies the file(s) to copy.
destination Specifies the location and/or name of new files.

/S 	Copies directories and subdirectories except empty ones.
/E 	Copies directories and subdirectories, including empty ones. Same as /S /E. May be used to modify /T.
/C 	Continues copying even if errors occur.
/H 	Copies hidden and system files also.
/O 	Copies file ownership and ACL information.
/R 	Overwrites read-only files.
/Y 	Suppresses prompting to confirm you want to overwrite an existing destination file.
/D:m-d-y 	Copies files changed on or after the specified date. If no date is given, opies only those files whose source time is newer than the destination time.
/V 	Verifies each new file.

